|
In object-oriented programming, the open/closed principle states "''software entities (classes, modules, functions, etc.) should be open for extension, but closed for modification''";〔 〕 that is, such an entity can allow its behaviour to be extended without modifying its source code. This is especially valuable in a production environment, where changes to source code may necessitate code reviews, unit tests, and other such procedures to qualify it for use in a product: code obeying the principle doesn't change when it is extended, and therefore needs no such effort. The name ''open/closed principle'' has been used in two ways. Both ways use inheritance to resolve the apparent dilemma, but the goals, techniques, and results are different. == Meyer's open/closed principle == Bertrand Meyer is generally credited for having originated the term ''open/closed principle'',〔Robert C. Martin ("The Open-Closed Principle", C++ Report, January 1996, pp. 1 )〕 which appeared in his 1988 book ''Object Oriented Software Construction''.
At the time Meyer was writing, adding fields or functions to a library inevitably required changes to any programs depending on that library. Meyer's proposed solution to this dilemma relied on the notion of object-oriented inheritance (specifically implementation inheritance):
抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「Open/closed principle」の詳細全文を読む スポンサード リンク
|